home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Enter 2002 August
/
EnterCD 8_2002.iso
/
Internet
/
Adobe GoLive 6.0
/
data1.cab
/
PF_AppDir_Mod_JScript_GlobalScripts
/
KeyAction.scpt
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2002-03-28
|
254 b
|
10 lines
CSKeyAction = new Array;
function CSKeyPress(ev) {
var code;
if(IsIE()) code = event.keyCode;
else code = ev.which;
var act = CSKeyAction[code];
if(typeof(act) != "undefined")
CSAction (new Array(act));
}
document.onkeypress = CSKeyPress;